diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-20 20:58:44 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-09-20 20:58:44 +0100 |
| commit | 7e17cd3171e46d0e422db1ef63923f2ddf4aa767 (patch) | |
| tree | 1a44926b6ed0103c3a2224d63d3771b733ca0423 /src/pages/[locale]/index.astro | |
| parent | f76ec4690de348c9e6363b488f6a0cba805666ac (diff) | |
Adds submission info to home page
Diffstat (limited to 'src/pages/[locale]/index.astro')
| -rw-r--r-- | src/pages/[locale]/index.astro | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pages/[locale]/index.astro b/src/pages/[locale]/index.astro index f031e8e..a230aee 100644 --- a/src/pages/[locale]/index.astro +++ b/src/pages/[locale]/index.astro @@ -23,6 +23,11 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale); <Page title={t(tPage, { key: 'title' })}> <section> + <h2 set:html={t(tPage, { key: 'submit' })} /> + <p set:html={t(tPage, { key: 'submit-para-1' })} /> + <p set:html={t(tPage, { key: 'submit-para-2' })} /> + </section> + <section> <h2 class="grid-span-6" set:html={t(tPage, { key: 'news' })} /> <NewsIndex newsItems={mostRecentNewsItem ? [mostRecentNewsItem] : []} headingLevel="h3" /> { |
